home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / DJGPP / makedj.uti < prev    next >
Text File  |  1979-12-31  |  540b  |  32 lines

  1. # makefile
  2. #
  3. # This is part of the flight simulator 'fly8'.
  4. # Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  5. #
  6.  
  7. #
  8. # make the utilities, for msdos, djgpp
  9. #
  10.  
  11. CFLAGS= $(XFLAGS) -I.. -I. -I../$(SYSTEM)
  12.  
  13. HFILES=    ../keydef.h ../keymap.h ../keyname.h
  14.  
  15. all:    mac2max.exe max2mac.exe
  16.  
  17. mac2max.o max2mac.o: $(HFILES)
  18.  
  19. mac2max.exe:    mac2max.o
  20.     $(CC) $(CFLAGS) mac2max.o -o mac2max
  21.     strip mac2max
  22.     a2x mac2max
  23.  
  24. max2mac.exe:    max2mac.o ../need.o
  25.     $(CC) $(CFLAGS) max2mac.o  ../need.o -o max2mac
  26.     strip max2mac
  27.     a2x max2mac
  28.  
  29. clean:
  30.     -rm *.o
  31.     -rm *.exe
  32.